home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Freeware 2002 November
/
SGI Freeware 2002 November - Disc 2.iso
/
dist
/
fw_kdelibs.idb
/
usr
/
freeware
/
src
/
kdelibs
/
patches.z
/
patches
Wrap
Text File
|
1999-01-26
|
8KB
|
280 lines
*** ./kdecore/kkeyconf.h Tue Jun 16 16:03:23 1998
--- ../kdelibs-1.0/./kdecore/kkeyconf.h Thu Aug 27 12:23:49 1998
***************
*** 198,204 ****
QDict<KKeyEntry> aKeyDict;
QDict<KKeyWidgetEntry> aWidgetDict;
! void KKeyConfig::internalDisconnectFunction( const QString& widgetName,
KKeyWidgetEntry *pWEntry, KKeyEntry *pEntry, KKeyConnectEntry *pCEntry );
protected:
--- 198,204 ----
QDict<KKeyEntry> aKeyDict;
QDict<KKeyWidgetEntry> aWidgetDict;
! void /* KKeyConfig::*/internalDisconnectFunction( const QString& widgetName,
KKeyWidgetEntry *pWEntry, KKeyEntry *pEntry, KKeyConnectEntry *pCEntry );
protected:
*** ./kdecore/kapp.h Fri Jul 3 01:42:43 1998
--- ../kdelibs-1.0/./kdecore/kapp.h Thu Aug 27 11:53:20 1998
***************
*** 749,755 ****
virtual void kdisplaySetStyleAndFont();
virtual void readSettings();
void resizeAll();
! virtual void KApplication::applyGUIStyle(GUIStyle newstyle);
public:
--- 749,755 ----
virtual void kdisplaySetStyleAndFont();
virtual void readSettings();
void resizeAll();
! virtual void /* KApplication::*/applyGUIStyle(GUIStyle newstyle);
public:
*** ./kdecore/drag.h Tue Jun 16 16:03:14 1998
--- ../kdelibs-1.0/./kdecore/drag.h Thu Aug 27 11:42:59 1998
***************
*** 437,443 ****
/**
* Finds the root window belonging to the global point p.
*/
! virtual Window KDNDWidget::findRootWindow( QPoint & p );
/**
* This function MUST be called by your implementation if you overload it.
--- 437,443 ----
/**
* Finds the root window belonging to the global point p.
*/
! virtual Window /*KDNDWidget::*/findRootWindow( QPoint & p );
/**
* This function MUST be called by your implementation if you overload it.
*** ./kdecore/kconfigbase.cpp Wed May 27 00:14:57 1998
--- ../kdelibs-1.0/./kdecore/kconfigbase.cpp Thu Aug 27 11:40:44 1998
***************
*** 502,508 ****
}
! bool KConfigBase::readBoolEntry( const char* pKey, const bool bDefault = false ) const
{
QString aValue = readEntry( pKey );
if( aValue.isNull() )
--- 502,508 ----
}
! bool KConfigBase::readBoolEntry( const char* pKey, const bool bDefault/* = false*/ ) const
{
QString aValue = readEntry( pKey );
if( aValue.isNull() )
*** ./mediatool/connect.c Wed Jun 17 09:01:23 1998
--- ../kdelibs-1.0/./mediatool/connect.c Thu Aug 27 12:50:18 1998
***************
*** 326,332 ****
hdr = FindChunkData(helpptr,"IHDR");
unlink(hdr->ipcfname);
! // Detach when last client goes doen
shmctl(mcon->talkid, IPC_RMID, &InfoBuf);
if ( helpptr != NULL)
--- 326,332 ----
hdr = FindChunkData(helpptr,"IHDR");
unlink(hdr->ipcfname);
! /* Detach when last client goes doen */
shmctl(mcon->talkid, IPC_RMID, &InfoBuf);
if ( helpptr != NULL)
*** ./mkinstalldirs Mon Apr 14 00:42:40 1997
--- ../kdelibs-1.0/./mkinstalldirs Mon Aug 31 19:24:22 1998
***************
*** 5,10 ****
--- 5,11 ----
# Last modified: 1994-03-25
# Public domain
+
errstatus=0
for file in ${1+"$@"} ; do
***************
*** 19,26 ****
esac
if test ! -d "$pathcomp"; then
! echo "mkdir $pathcomp" 1>&2
! mkdir "$pathcomp" > /dev/null 2>&1 || lasterr=$?
fi
if test ! -d "$pathcomp"; then
--- 20,32 ----
esac
if test ! -d "$pathcomp"; then
! if [ `uname -s | cut -c1-4` = "IRIX" ] ; then
! echo "install -d $pathcomp" 1>&2
! install -dir -m 755 $pathcom
! else
! echo "mkdir $pathcomp" 1>&2
! mkdir "$pathcomp" > /dev/null 2>&1 || lasterr=$?
! fi
fi
if test ! -d "$pathcomp"; then
*** ./kdeui/ktoolbar.cpp Thu Jun 18 23:41:42 1998
--- ../kdelibs-1.0/./kdeui/ktoolbar.cpp Thu Aug 27 12:34:49 1998
***************
*** 838,844 ****
mgr->doMove(true, false, false);
! for (KToolBarItem *b = ons.first(); b; b=ons.next())
b->setEnabled(true);
}
if (transparent)
--- 838,844 ----
mgr->doMove(true, false, false);
! for (/* KToolBarItem * */b = ons.first(); b; b=ons.next())
b->setEnabled(true);
}
if (transparent)
***************
*** 1156,1162 ****
}
/* A poem all in G-s! No, any widget */
! int KToolBar::insertWidget(int _id, int _size, QWidget *_widget, int _index=-1)
{
KToolBarItem *item = new KToolBarItem(_widget, ITEM_FRAME, _id, false);
--- 1156,1162 ----
}
/* A poem all in G-s! No, any widget */
! int KToolBar::insertWidget(int _id, int _size, QWidget *_widget, int _index/*=-1*/)
{
KToolBarItem *item = new KToolBarItem(_widget, ITEM_FRAME, _id, false);
*** ./kdeui/ktmainwindow.cpp Sat Jun 13 05:39:15 1998
--- ../kdelibs-1.0/./kdeui/ktmainwindow.cpp Thu Aug 27 12:04:45 1998
***************
*** 860,865 ****
return kstatusbar != 0;
}
! bool KTMainWindow::hasToolBar( int ID = 0){
return toolbars.at( ID ) != 0;
}
--- 860,865 ----
return kstatusbar != 0;
}
! bool KTMainWindow::hasToolBar( int ID /*= 0*/){
return toolbars.at( ID ) != 0;
}
*** ./kfile/kfileinfocontents.cpp Sun May 31 03:36:06 1998
--- ../kdelibs-1.0/./kfile/kfileinfocontents.cpp Thu Aug 27 12:48:33 1998
***************
*** 396,402 ****
for (i = 0; i < sorted_length; i++)
nameArray[i] = sortedArray[i]->fileName();
! qsort(nameArray, sorted_length, sizeof(const char*), stricmp);
// insert into list. Keeps deep copies
for (i = 0; i < sorted_length; i++)
--- 396,403 ----
for (i = 0; i < sorted_length; i++)
nameArray[i] = sortedArray[i]->fileName();
! qsort(nameArray, sorted_length, sizeof(const char*),
! (int (*) (const void *, const void *)) stricmp);
// insert into list. Keeps deep copies
for (i = 0; i < sorted_length; i++)
*** ./kfile/kpreview.cpp Thu Apr 16 18:54:13 1998
--- ../kdelibs-1.0/./kfile/kpreview.cpp Thu Aug 27 12:49:11 1998
***************
*** 181,187 ****
for (int i=0; i<4; i++)
vertical->setRowStretch ( i, 0 );
! for (int i=4; i<10; i++)
vertical->setRowStretch ( i, 5 );
QLabel *myNameLabel = new QLabel( i18n("Name:"), myBox, "_namelabel");
--- 181,187 ----
for (int i=0; i<4; i++)
vertical->setRowStretch ( i, 0 );
! for (i=4; i<10; i++)
vertical->setRowStretch ( i, 5 );
QLabel *myNameLabel = new QLabel( i18n("Name:"), myBox, "_namelabel");
*** ./kfile/kfiledialog.cpp Tue Jul 7 19:00:12 1998
--- ../kdelibs-1.0/./kfile/kfiledialog.cpp Thu Aug 27 12:46:28 1998
***************
*** 1302,1310 ****
}
! KFilePreviewDialog::KFilePreviewDialog(const char *dirName, const char *filter= 0,
! QWidget *parent= 0, const char *name= 0,
! bool modal = false, bool acceptURLs = true)
: KFileBaseDialog(dirName, filter, parent, name, modal, acceptURLs)
{
init();
--- 1302,1314 ----
}
! KFilePreviewDialog::KFilePreviewDialog(
! const char *dirName,
! const char *filter/* = 0*/,
! QWidget *parent/* = 0*/,
! const char *name/* = 0*/,
! bool modal /* = false */,
! bool acceptURLs /* = true */)
: KFileBaseDialog(dirName, filter, parent, name, modal, acceptURLs)
{
init();
*** ./configure Sat Jul 11 04:37:57 1998
--- ../kdelibs-1.0/./configure Thu Aug 27 12:00:27 1998
***************
*** 1074,1079 ****
--- 1074,1080 ----
echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
echo "configure:1076: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
+ set +x
ac_ext=c
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CPP $CPPFLAGS'
***************
*** 2226,2232 ****
#include "confdefs.h"
#include <alloca.h>
int main() {
! char *p = alloca(2 * sizeof(int));
; return 0; }
EOF
if { (eval echo configure:2233: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
--- 2227,2233 ----
#include "confdefs.h"
#include <alloca.h>
int main() {
! char *p = (char *) alloca(2 * sizeof(int));
; return 0; }
EOF
if { (eval echo configure:2233: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then